home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C++ / Applications / Muddweller 1.2 / source code / Main / LogWindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-11  |  732 b   |  41 lines  |  [TEXT/MPS ]

  1. /* LogWindow - Implementation of TLogWindow                                   */
  2.  
  3. #ifndef __LOGWINDOW__
  4. #define __LOGWINDOW__
  5.  
  6.         // • MacApp
  7. #ifndef __UMacApp__
  8. #include "UMacApp.h"
  9. #endif
  10.  
  11. #ifndef __UDialog__
  12. #include "UDialog.h"
  13. #endif
  14.  
  15.         // • Implementation use
  16. #ifndef __COMMANDVIEW__
  17. #include "CommandView.h"
  18. #endif
  19.  
  20. #ifndef __LOGVIEW__
  21. #include "LogView.h"
  22. #endif
  23.  
  24.  
  25. class TLogWindow: public TWindow {
  26. public:
  27.     TLogView *fLogView;
  28.     TCommandView *fCommandView;
  29.     
  30.     virtual pascal void Activate (Boolean entering);
  31.     virtual pascal Boolean DoIdle (IdlePhase phase);
  32.     virtual pascal void IRes (TDocument *itsDocument, TView *itsSuperView,
  33.         Ptr *itsParams);
  34.     virtual pascal void Open (void);
  35. };
  36.  
  37.  
  38. void InitLogWindow (void);
  39.  
  40. #endif
  41.